From e6e9178431725c369aeac117badc546edf18ab07 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Thu, 26 Jun 2014 12:28:22 +0100 Subject: [PATCH] mini-os: made off_t type signed POSIX requires this. Signed-off-by: Thomas Leonard Acked-by: Ian Campbell Acked-by: Samuel Thibault --- extras/mini-os/include/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/mini-os/include/types.h b/extras/mini-os/include/types.h index 6640ede52b..de356e87db 100644 --- a/extras/mini-os/include/types.h +++ b/extras/mini-os/include/types.h @@ -73,7 +73,7 @@ typedef unsigned long uint64_t; #endif typedef uint64_t uintmax_t; typedef int64_t intmax_t; -typedef uint64_t off_t; +typedef int64_t off_t; #endif typedef intptr_t ptrdiff_t; -- 2.30.2